home *** CD-ROM | disk | FTP | other *** search
- /*
- * Implements a cell that displays its data in 3 columns.
- *
- * For legal stuff see the file COPYRIGHT
- */
- #import <appkit/appkit.h>
-
- #if NOT_YET
- typedef struct {
- int offset; /* column position */
- char *method; /* method name to invoke */
- } ColDesc;
- #endif
-
- @interface ColCell : NXBrowserCell
- {
- id data;
- }
-
- - drawInside:(const NXRect *)cellFrame inView:controlView;
- - setFont:fontObj;
- - copyFromZone:(NXZone *)zone;
- - (void)setCellData:obj;
- - cellData;
-
- @end
-